type crypto/tls.encryptedExtensionsMsg

7 uses

	crypto/tls (current package)
		conn.go#L1145: 		m = new(encryptedExtensionsMsg)
		handshake_client_tls13.go#L434: 	encryptedExtensions, ok := msg.(*encryptedExtensionsMsg)
		handshake_messages.go#L891: type encryptedExtensionsMsg struct {
		handshake_messages.go#L898: func (m *encryptedExtensionsMsg) marshal() ([]byte, error) {
		handshake_messages.go#L937: func (m *encryptedExtensionsMsg) unmarshal(data []byte) bool {
		handshake_messages.go#L938: 	*m = encryptedExtensionsMsg{raw: data}
		handshake_server_tls13.go#L637: 	encryptedExtensions := new(encryptedExtensionsMsg)